Version: v1.1
Date: 2018-12-22
Bug Fixes:
	- Added new controller for opening register, replaced all methods from master controller to register controller
	- There was an error when ingredients were added to edit food menu. It has been fixed.
	- Sort menu by category id. without category id to pos menus under category will not be populated.
	- On modification or previous order, pos user had to select new table. Now it's not necessary to select a table.
	- On modification of an order user changes on table did not effect. Now on a modification table change can happen or not.
Imrpovements:
	- Add item to cart at pos in append order.
	- Give access to POS when the role type is 'POS User' or user have menu access of POS
New Features:
	- Sending notification to kitchen panel and bar panel when there is any modification of any item.


Please add/replace these files to respective locations:

views/master/foodMenu/editFoodMenu.php
assets/POS/js/custom.js
-application/controllers/Bar.php
-application/controllers/Customer_due_receive.php
-application/controllers/Kitchen.php
-application/controllers/Sale.php
-application/controllers/Register.php
application/controllers/Master.php
--------------------------------- Version------------------------------
Version: v1.1
--------------------------------- Date------------------------------
Date: 2018-12-18
--------------------------------- Update------------------------------
Bug Fixes: 
	- Food menu recipe edit problem fixed
	- Food menu sorting issue fixed
	- On modification or previous order, pos user had to select new table, Now it's not necessary to select a table
	- On modification of an order user changes on table did not effect, Now on a modification table change can happen or not

Imrpovements:
	- Improved register operation by creating new controller
	- Add item to cart at pos in append order
	- Give direct access to POS when the role type is 'POS User' or user have menu access of POS

New Features:
	- Sending notification to kitchen panel and bar panel when there is any modification of any order

----------------------------To Incorporate Update-----------------------
Please add/replace these files to respective locations(create folder wherever needed):
	- assets/POS/js/custom.js
	- application/controllers/Bar.php
	- application/controllers/Customer_due_receive.php
	- application/controllers/Kitchen.php
	- application/controllers/Sale.php
	- application/controllers/Register.php
	- application/controllers/Master.php
	- application/views/master/foodMenu/editFoodMenu.php
	- application/views/sale/POS/main_screen.php 
	- application/views/register/openRegister.php
	- application/views/kitchen/panel.php
	- application/views/bar/panel.php
	- application/models/Register_model.php
	- application/models/Master_model.php
	- application/models/Kitchen_model.php
	- application/models/Bar_model.php
	- application/views/userHome.php
	- assets/bar_panel/css/style.css
	- assets/bar_panel/js/custom.js
	- assets/kitchen_panel/css/style.css
	- assets/kitchen_panel/js/custom.js


Please run these SQL in your Database:
CREATE TABLE `tbl_notification_bar_kitchen_panel` (
  `id` int(15) NOT NULL,
  `notification` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE `tbl_notification_bar_kitchen_panel`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `tbl_notification_bar_kitchen_panel`
  MODIFY `id` int(15) NOT NULL AUTO_INCREMENT;
COMMIT;
ALTER TABLE `tbl_notification_bar_kitchen_panel` ADD `outlet_id` INT(15) NOT NULL AFTER `notification`;